home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-11-11 | 561 b | 29 lines |
- #!smake
-
- # Makefile for clients to demonstrate Xsgi capabilities
-
- include ${ROOT}/usr/include/make/commondefs
-
- LCOPTS = -O -xansi
- LLDLIBS = -lX11
- TARGETS = crosshair layerdemo xlayerinfo tulip
- CFILES = XLayerUtil.c crosshair.c layerdemo.c tulip.c xlayerinfo.c
-
- default all: $(TARGETS)
-
- include $(COMMONRULES)
-
-
- crosshair: $@.c
- $(CCF) $@.c -o $@ $(LDFLAGS)
-
- layerdemo: $@.c XLayerUtil.o
- $(CCF) $@.c XLayerUtil.o -o $@ $(LDFLAGS) -lm
-
- tulip : $@.c
- $(CCF) -o $@ $@.c $(LDFLAGS) -lXext
-
- xlayerinfo: $@.c XLayerUtil.o
- $(CCF) $@.c XLayerUtil.o -o $@ $(LDFLAGS)
-
-